home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / rvga01 / vga_bios.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-10  |  558 b   |  27 lines

  1. /**********************************************
  2.  
  3.     Prototypes for VGArtns.c
  4.  
  5. **********************************************/
  6.  
  7. #include "global.h"
  8.  
  9. #ifndef __VGA_BIOS_H
  10. #define __VGA_BIOS_H
  11.  
  12.  
  13. /**********************************************
  14.  
  15.     Prototypes
  16.  
  17. **********************************************/
  18.  
  19. extern UBYTE VB_Page;
  20.  
  21. extern void VB_SetMode(UWORD mode);
  22. extern UWORD VB_GetMode(void);
  23. extern void VB_SetCursor(UBYTE type);
  24. extern void VB_SetCursorPos(UBYTE x, UBYTE y);
  25. extern void VB_GetCursorPos(UBYTE *x, UBYTE *y);
  26. #endif
  27.